how to convert int into int array of digits in java

138

how to convert int into int array of digits in java -

String temp = Integer.toString(guess);
int[] newGuess = new int[temp.length()];
for (int i = 0; i < temp.length(); i++)
{
    newGuess[i] = temp.charAt(i) - '0';
}

Comments

Submit
0 Comments